home *** CD-ROM | disk | FTP | other *** search
Java Source | 2000-06-23 | 1.4 KB | 55 lines |
- /*
- * QuickTime for Java SDK Sample Code
-
- Usage subject to restrictions in SDK License Agreement
- * Copyright: © 1996-1999 Apple Computer, Inc.
-
- */
- import java.awt.*;
- import java.awt.event.*;
-
- import quicktime.*;
- import quicktime.app.QTFactory;
- import quicktime.app.display.*;
- import quicktime.app.image.*;
-
- public class JavaDrawing extends Frame {
- public static void main (String args[]) {
- try {
- QTSession.open();
- JavaDrawing jd = new JavaDrawing("QT in Java");
- jd.pack();
- jd.show();
- jd.toFront();
- } catch (Exception e) {
- e.printStackTrace();
- QTSession.close();
- }
- }
-
- JavaDrawing (String title) throws Exception {
- super (title);
-
- setBackground (Color.lightGray);
-
- QTCanvas myQTCanvas = new QTCanvas (QTCanvas.kFreeResize, 0.5f, 0.5f);
- add("Center", myQTCanvas);
-
- // add a WindowListener to close the program down
- addWindowListener (new WindowAdapter () {
- public void windowClosing (WindowEvent e) {
- QTSession.close();
- dispose();
- }
- public void windowClosed (WindowEvent e) {
- System.exit(0);
- }
- });
-
- JavaPainter jp = new JavaPainter (this, QTFactory.findAbsolutePath ("duke/T3.gif").getCanonicalPath());
- jp.prepareImage();
- QTImageDrawer qid = new QTImageDrawer (jp, new Dimension (160, 110), Redrawable.kSingleFrame);
- myQTCanvas.setClient (qid, true);
- }
- }
-